home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / CNews / Source / batch / comp < prev    next >
Encoding:
Text File  |  1992-04-18  |  160 b   |  10 lines

  1. #! /bin/sh
  2. # Invoke compress, without silly 2.11-compatible header.
  3.  
  4. compress
  5. status=$?
  6. case "$status" in
  7. 2)    status=0    ;;    # compress stupidity
  8. esac
  9. exit $status
  10.